From 91c2518a67dd1eb6b0ca7c9e14317c9a121baab9 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 12 Aug 2009 14:27:52 +0100 Subject: [PATCH] gdbstub: Small fixes. * Correctly handly EFLAGS.TF in the hypervisor * Register value sent with 'P' command is in native byte order. Signed-off-by: Keir Fraser --- xen/arch/x86/traps.c | 7 +++++-- xen/common/gdbstub.c | 24 +++++++++++++++++++++++- 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index f0d261b9e9..508cd9d306 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -3007,9 +3007,12 @@ asmlinkage void do_debug(struct cpu_user_regs *regs) if ( (regs->rip >= (unsigned long)sysenter_entry) && (regs->rip < (unsigned long)sysenter_eflags_saved) ) goto out; - WARN_ON(regs->rip != (unsigned long)sysenter_eflags_saved); + if ( (regs->rip != (unsigned long)sysenter_eflags_saved) && + !debugger_trap_fatal(TRAP_debug, regs) ) + WARN_ON(1); #else - WARN_ON(1); + if ( !debugger_trap_fatal(TRAP_debug, regs) ) + WARN_ON(1); #endif regs->eflags &= ~EF_TF; } diff --git a/xen/common/gdbstub.c b/xen/common/gdbstub.c index 6bbd23f395..512172a1aa 100644 --- a/xen/common/gdbstub.c +++ b/xen/common/gdbstub.c @@ -116,6 +116,28 @@ str2ulong(const char *str, unsigned long bytes) return x; } +unsigned long +str_to_native_ulong(const char *str) +{ + unsigned long x = 0, i = 0; + + while ( *str && (i < BYTES_PER_LONG) ) + { +#ifdef __BIG_ENDIAN + x <<= 8; + x += str2hex(*str); +#elif defined(__LITTLE_ENDIAN) + x += (unsigned long)str2hex(*str) << (i*8); +#else +# error unknown endian +#endif + str += 2; + i++; + } + + return x; +} + /* gdb io wrappers */ static signed long gdb_io_write(const char *buf, unsigned long len, struct gdb_context *ctx) @@ -488,7 +510,7 @@ process_command(struct cpu_user_regs *regs, struct gdb_context *ctx) return 0; } ptr++; - val = str2ulong(ptr, sizeof(unsigned long)); + val = str_to_native_ulong(ptr); gdb_arch_write_reg(addr, val, regs, ctx); break; case 'D': -- 2.30.2